From: Claudio Cambra Date: Mon, 3 Mar 2025 18:35:41 +0000 (+0800) Subject: gui/macOS: Fix emitted signal in file provider sync status GUI component X-Git-Tag: archive/raspbian/3.16.7-1_deb13u1+rpi1~1^2~12^2~2^2~3^2 X-Git-Url: https://dgit.raspbian.org/%22http://www.example.com/cgi/success/%22http:/www.example.com/cgi/success?a=commitdiff_plain;h=497ab39ea343ca17b68f071d344f0530d58464ae;p=nextcloud-desktop.git gui/macOS: Fix emitted signal in file provider sync status GUI component Signed-off-by: Claudio Cambra --- diff --git a/src/gui/macOS/ui/FileProviderSyncStatus.qml b/src/gui/macOS/ui/FileProviderSyncStatus.qml index cd6376679..61db9ae98 100644 --- a/src/gui/macOS/ui/FileProviderSyncStatus.qml +++ b/src/gui/macOS/ui/FileProviderSyncStatus.qml @@ -71,10 +71,10 @@ GridLayout { text: qsTr("Request sync") visible: !root.syncStatus.syncing hoverEnabled: true - onClicked: root.controller.signalFileProviderDomain(root.accountUserIdAtHost) + onClicked: root.domainSignalRequested() ToolTip.visible: hovered ToolTip.delay: Qt.styleHints.mousePressAndHoldInterval ToolTip.text: qsTr("Request a sync of changes for the VFS environment.\nmacOS may ignore or delay this request.") } -} \ No newline at end of file +}